26. Solutions: WHERE
Solution from previous WHERE Questions
SELECT * FROM orders WHERE gloss_amt_usd >= 1000 LIMIT 5;
2.
SELECT *
FROM orders
WHERE total_amt_usd < 500
LIMIT 10;
You will notice when using these WHERE statements, we do not need to ORDER BY unless we want to actually order our data. Our condition will work without having to do any sorting of the data.
Code
If you need a code on the https://github.com/udacity.